home *** CD-ROM | disk | FTP | other *** search
- /*
- contains macros, external variables, function declarations, and data structures relevant to AIFF-based DSP programming
- */
-
- #define UCHAR unsigned char
-
- typedef struct
- {
- int chan, /* number of channels */
- wdsi, /* sample word size in bits */
- framsiz; /* sample frame size in bytes */
- long fram; /* number of sample frames */
- double rate; /* sample rate in frames/sec */
- }
- native_header;
-
- extern native_header nh;
- extern void *d;
-
- void err ( char *errmsg );
- void warn ( char *warnmsg );
-